for snprintf, vsnprintf.
delete an unneeded MSVC compiler pragma.
#define CENTI_TO_MICRO(t) ((t) * 10000) /* Centiseconds to Microseconds */
#define MICRO_TO_CENTI(t) ((t) / 10000) /* Centiseconds to Microseconds */
-/*
- * Snprintf is in SUS (so it's in most UNIX-like substance) and it's in
- * C99 (albeit with slightly different semantics) but it isn't in C89.
- * This tweaks allows us to use snprintf on the holdout.
- */
#if __WIN32__
-# define snprintf _snprintf
-# define vsnprintf _vsnprintf
# ifndef fileno
# define fileno _fileno
# endif
# define strdup _strdup
#endif
-/* Turn off numeric conversion warning */
#if __WIN32__
-# if _MSC_VER
-# pragma warning(disable:4244)
-# endif
#if !defined _CRT_SECURE_NO_DEPRECATE
# define _CRT_SECURE_NO_DEPRECATE 1
#endif